home *** CD-ROM | disk | FTP | other *** search
/ Asobe! Fotoshock 5.0 ERO / Asobe! Fotoshock 5.0 ERO.iso / pc / tool.dxr / 00031_ÉfÉoÉbÉOÉãÅ[É`Éì.ls < prev    next >
Encoding:
Text File  |  1999-03-23  |  547 b   |  45 lines

  1. on debugstat
  2.   global gdbgflg
  3.   set gdbgflg to 1
  4. end
  5.  
  6. on debugstop
  7.   global gdbgflg
  8.   set gdbgflg to 0
  9. end
  10.  
  11. on printvar comment, thevar
  12.   global gdbgflg
  13.   if gdbgflg then
  14.     put comment && thevar
  15.   end if
  16. end
  17.  
  18. on printlocalvras
  19.   global gdbgflg
  20.   if gdbgflg then
  21.     showLocals()
  22.   end if
  23. end
  24.  
  25. on printglobalvras
  26.   global gdbgflg
  27.   if gdbgflg then
  28.     showGlobals()
  29.   end if
  30. end
  31.  
  32. on traceon
  33.   global gdbgflg
  34.   if gdbgflg then
  35.     set the trace to 1
  36.   end if
  37. end
  38.  
  39. on traceoff
  40.   global gdbgflg
  41.   if gdbgflg then
  42.     set the trace to 0
  43.   end if
  44. end
  45.